From 2d04c187c54b31508ca9110f15d089f26220b975 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 16 Oct 2002 15:56:15 +0000 Subject: [PATCH] (Fcopy_file): Fix backward test of KEEP_TIME. --- src/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 2e83159ef86..41504f9882b 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -2417,7 +2417,7 @@ A prefix arg makes KEEP-TIME non-nil. */) SDATA (encoded_newname), FALSE)) report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil))); - else if (NILP (keep_time)) + else if (!NILP (keep_time)) { EMACS_TIME now; DWORD attributes; -- 2.30.2